home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Electronic Messages / Delphi Digests / Delphi Vol. 3 / Delphi 3.49 < prev    next >
Encoding:
Internet Message Format  |  1988-04-08  |  31.4 KB  |  [TEXT/ttxt]

  1. Date: Sat 7 Nov 87 08:26:21-GMT
  2. From: Jeff Shulman <SHULMAN@SDR>
  3. Subject: Delphi Mac Digest V3 #49
  4.  
  5. Delphi Mac Digest     Saturday, November 7, 1987     Volume 3 : Issue 49 
  6.  
  7. Today's Topics:
  8.      HyperCard Importing. (4 messages)
  9.      RE: MacWrite 4.6
  10.      RE: MultiFinder SIZE
  11.      Hard Disk Backup (4 messages)
  12.      RE: FullWrite Professional grievance
  13.      RE: re: DiskTimer II claims (2 messages)
  14.      TermProg features? (2 messages)
  15.      ?
  16.      C Compilers
  17.      TIFF - EPSF (2 messages)
  18.      Novy Accelerator (3 messages)
  19.      A5 at interrupt time...? (4 messages)
  20.      pr
  21.      Imagewriter II (2 messages)
  22.      RE: FullWrite Professional grievance
  23.  
  24. ---------------------------------------------------------------------- 
  25.  
  26. From: NATURAL
  27. Subject: HyperCard Importing.
  28. Date: 30-OCT 19:52 Programming
  29.  
  30. Ok, here's a good one.
  31.  
  32. I am trying to import a variable lenght record into Hypercard and can't
  33. figure out where to put the read until return statement to make it work
  34. correctly. What I _want_ it to do is to go to the new card after
  35. encountering a return and
  36.  
  37. stop filling the old fields and start on field one. Any help would be
  38. great appreciated... here's the code.
  39.  
  40.  
  41. on mouseUp
  42.   ask "Import Text from what file?"
  43.   if it is empty then exit mouseup
  44.   put it into fileName
  45.   open file filename
  46.   repeat
  47.     domenu "New Card"
  48.     repeat with i=1 to the number of fields
  49.       --  read from file filename until return
  50.       read from file filename until tab
  51.       if it is empty then              -- end oU file
  52.         if i=1 then doMenu "Delete Card"
  53.         close file filename
  54.         exit mouseup
  55.       end if
  56.       put empty into last char of it -- kill tab
  57.       if it is not return then put it into field i
  58.     end repeat
  59.   end repeat 
  60. end mouseUp
  61.  
  62.  
  63. [Thanks]
  64.  
  65. Joshua
  66.  
  67. ------------------------------
  68.  
  69. From: JIMH
  70. Subject: RE: HyperCard Importing. (Re: Msg 23150)
  71. Date: 31-OCT 00:28 Programming
  72.  
  73. I am toying with the idea of implementing a data dictionary program on
  74. hyper card but i am not sure i can do what i need.  what i have is a
  75. text field of unknown length of the form item1 + item2 + item3 + ....
  76. which is the composition of whats callekd a data flow.  what i want to
  77. be able to do is click on any of the items and have its associated card
  78. come up.  is there a way to do this?  thanks jim
  79.  
  80. ------------------------------
  81.  
  82. From: NATURAL
  83. Subject: RE: HyperCard Importing. (Re: Msg 23154)
  84. Date: 31-OCT 03:03 Programming
  85.  
  86. Jim...
  87.  
  88. have you seen the Importer script?  It seems to do well if the first
  89. record has the maximum number of fields but I can't seem to figure out
  90. why.
  91.  
  92. ------------------------------
  93.  
  94. From: NWOLF
  95. Subject: RE: HyperCard Importing. (Re: Msg 23166)
  96. Date: 1-NOV-01:26: Programming
  97.  
  98. Jim, There are a number of ways to do what you want. Right offhand I
  99. can't locate the scripts but I have 'em lying around here someplace, so
  100. maybe I can find them & post 'em. Anyway, it's not all that difficult.
  101. After you import the text into the fields you need to make sure that the
  102. fields are locked. This will allow you to follow one or more course(s)
  103. of acion depending on exactly how you want things to work out.
  104. Essentially what you have to do is click on the word you want in the
  105. field then have the script double-click at the clickloc after unlocking
  106. the text field. This selects the word. Place the selection in some
  107. variable and lock the field. Use the variable as a means to navigate to
  108. wherever you want to go. If necessary, create a new card which will
  109. store the info you want and which can be deleted when the script has run
  110. its course and the card no longer serves any purpose. Make sure you
  111. push-pop or otherwise provide for returning to your starting place or to
  112. whatever place you' d like to be able to go to next. Another way to do
  113. this is with buttons, either hidden by hiding, or hidden by placing
  114. behind, which, when activated will do whatever you want. I've found the
  115. best way to do this is to place the script in the background. That way
  116. you can provide one script for many buttons without having to write it
  117. in each one. Of course to do this you often have to place some
  118. information in a container some- how. This can be done by doubleclicking
  119. as described above or by whatever means suits your stack. Manytimes you
  120. can set up a matching situation whereby the buttonname or some coponent
  121. of the script will be matched to some predetermined variable which can
  122. be designated through a boolean process, if necessary.
  123.  
  124. As HyperCard tends to run more slowly when you get a lot of fields in
  125. one card - and especially if you cluster the fields together - it's a
  126. good idea to avoid too many fields in the original card. It sounds like
  127. you already have somewhat delineated information. This is good because
  128. you can create separate fields to handle each segment and a new card
  129. when you' ve reached a certain number of fields. (I think critical mass
  130. for the slowdown is somewhyere upwards of 25 fields - depending how
  131. close together they are.)
  132.  
  133. Best o' luck.
  134.  
  135. Neil.
  136.  
  137. ------------------------------
  138.  
  139. From: MACENGLISH
  140. Subject: RE: MacWrite 4.6 (Re: Msg 22946)
  141. Date: 30-OCT 20:46 User Supported Software
  142.  
  143. Steve,
  144.  
  145. I printed out your comment as well as Chuq's, Peabo's, and MadMac's and
  146. sent them with a letter to my dealer in Marion.  A friend of mine was
  147. going to pick up her computer Thursday, and I ask her to take the
  148. letter.
  149.  
  150. Brian, the salesman we work with, really didn't have 4.6 and told her he
  151. understood why I might be a bit upset.  He called Apple right then and
  152. there. He told my friend that someone would call him back and hopefully
  153. they'd send him 4.6 by modem.  He must have gotten it, for today is
  154. Friday, and I got 4.6 in the mail today!  Now that's service!  Thanks to
  155. everyone who wrote because it must have made an impression.
  156.  
  157. The Muncie dealer, where I bought my first Mac and thank God not my
  158. second, still has my disk (it's lost) who knows if I'll ever see it
  159. again.  But I did call Apple about them, and they gave me a Chicago
  160. number.  I called there, and someone who services the Indiana area is
  161. supposed to call me back, but I'll probably never be home if the person
  162. calls.  I'd probably do better to write, but I don't know whom to write
  163. to.
  164.  
  165. Debbie
  166.  
  167. ------------------------------
  168.  
  169. From: STEVEMALLER
  170. Subject: RE: MultiFinder SIZE (Re: Msg 23127)
  171. Date: 31-OCT 03:44 Bugs & Features
  172.  
  173. Here's some inside poop on MultiFinder and the "SIZE" resource...
  174.  
  175. GIVEN -> Application "A" and Application "B" running under MultiFinder
  176. (MF).
  177.          (Uh, Finder is running, too)
  178.  
  179. When you activate "A", MF suspends "B" unless "B" includes a SIZE
  180. resource that indicates that it is MF "aware". If it IS MF AWARE, MF
  181. will give it CPU time whenever the front application is not busy. (I'm
  182. not sure exactly how much time it gets).
  183.  
  184. HOW? -> You can use ResEdit to diddle the bits in an existing SIZE
  185. resource, or copy and paste one from a MF-friendly application (the
  186. Finder or PrintMonitor are examples). If you have an early copy of
  187. ResEdit (current # is 1.1b3), it includes a template (TMPL resource) for
  188. the Switcher SIZE format. This is the same as the MF SIZE, but the MF
  189. SIZE uses some of the "reserved bits". These bits are listed below,
  190. counting from the first listed one. Memory figures are basically the
  191. same as Switcher's, although MF's can be altered in the Finder by saying
  192. "Get Info".
  193.  
  194. Here are the bits in the MF SIZE resource:
  195.  
  196.   Save screen...................unused
  197.   Accept suspend events.........OFF >> This should only be set if the
  198.   Disable option................OFF    application is in fact written to
  199.   Can background................ON     take advantage of MultiFinder.
  200.   MultiFinder aware.............ON
  201.   Only background...............OFF
  202.   ...
  203.   ( the remaining 10 bits are still RESERVED by Apple)
  204.  
  205. What about MF requiring applications to call "WaitNextEvent"? Apparently
  206. the only thing that this does for the MultiFinder world is that it makes
  207. the frontmost application MORE MF friendly, because it allows you to say
  208. that you only need CPU time every n ticks. If you are a pre-MF app, you
  209. are probably wasting CPU cycles when there are no events.
  210.  
  211.  
  212.   WARNINGS * WARNINGS * WARNINGS * WARNINGS * WARNINGS
  213.   ----------------------------------------------------
  214.   Please be careful! Some words of advice:
  215.  
  216.   * ALWAYS work on a backup copy of your application
  217.   * Some apps make assumptions about the world being their's. Test your
  218.     application COMPLETELY before you commit any real work to it. For
  219.     example, I added a SIZE resource to Microphone and got it to run
  220.     in the background, but it isn't really designed to do so. I can't
  221.     switch out of it all the time, and it doesn't handle errors too
  222.     gracefully whilst in the background.
  223.   * You may find that the Clipboard is not converted properly in apps
  224.     converted in this manner. If this is true, change the
  225.     "MultiFinder aware" setting to OFF. This tells MF that the app needs
  226.     to have the Switcher-vintage fake DA charade pulled in order to
  227.     get the clipboard converted properly.
  228.   * MF will NOT switch out of a program while the frontmost window is
  229.     a standard "modal" dialog window. This is the familiar style with
  230.     a double border around the edge of the window. You may be able to
  231.     (OY - be careful) change the window type in ResEdit of a particular
  232.     window and get MF to switch out of an app while a dialog is being
  233.     displayed. The catch is that if the application is relying on the
  234.     Toolbox routine "ModalDialog" to handle events, MF won't switch
  235.     out anyhow anyway.
  236.  
  237.   GENERAL TIP
  238.   * If you hold down the Option key while opening a DA, it is opened in
  239.     that application's memory space ("heap") as opposed to the DA
  240.     Handler heap.
  241.  
  242. Remember, you didn't hear any of this here!
  243.  
  244.    (Not Steve)
  245.  
  246. ------------------------------
  247.  
  248. From: DSACHS
  249. Subject: Hard Disk Backup
  250. Date: 1-NOV-16:18: Hardware & Peripherals
  251.  
  252. I would like recommendations as to suitable programs for backing hard
  253. disks to floppies. I am dissatisfied with the ones I have tried.
  254.  
  255.  Features I would like to see are:
  256.  
  257.  The program must work properly.
  258.  
  259.  When doing and incremental backup, added files should be backed,
  260. regardless of modification dates.
  261.  
  262.  When doing an incremental backup, it should be possible to bypass files
  263. whose changes are of no consequence, such as System and some large
  264. Hypercard stacks.
  265.  
  266.  When doing a full restore, superseded and deleted files should not be
  267. copied to the hard disk.
  268.  
  269.  Folders that do not contain any files should be backed up and restored.
  270.  
  271. I am also interested in tape backup for a new Mac II at work, and am
  272. very disappointed at the reports of the poor speed of the Apple unit.
  273.  
  274. Backup programs I have tried:
  275.  
  276. Megacopy: works well but is restricted to cartridge to cartrige backup
  277. for the IOmega Bernoulli box.  currenly works with Mac Plus only.
  278.  
  279.  FileGuard (Rodime): The program failed on a full restore, but I was
  280. able to restore all files, a group at a time.
  281.  
  282.  HDBackup: Seems to work OK but insist on copying every single
  283. (expletive deleted) file
  284.  
  285. ------------------------------
  286.  
  287. From: JIMH
  288. Subject: RE: Hard Disk Backup (Re: Msg 23183)
  289. Date: 1-NOV-19:57: Hardware & Peripherals
  290.  
  291. I use HFS backup myself.  the newest version works quite well and can do
  292. all you stated, (i am 90% sure of that ;-) )  it is also a lot faster
  293. than hd backup.  A lot of folks like diskfit, but personally i dont want
  294. anything!!! to do with a backup program whic goes out and deletes files,
  295. then rewrites them on the old backup disks during incremental backup. 
  296. you save floppies i agree but how often do you have to blow away a
  297. floppy full of backups to make this a dangerous thing to do!  I have the
  298. apple tape b ackup at work and it sucks!!! if you thought the SE fan was
  299. loud you aint heard nothing yet!  Also it is slower to do a backup with
  300. theis than it is to use floppies and since it wont work in the
  301. background your machine is unusable until it finishes.  It also wont
  302. back up files across a file server.  so i have to move it from machine
  303. to machine. i ordered for myself the new drive from tecmar after playing
  304. with it at the show.  it does 40 megs in 15 minutes which is quite
  305. impressive. they claim it wil backup in the background and across file
  306. servers as well.  i will let you know what i think when i get it.  best
  307. jim
  308.  
  309. ------------------------------
  310.  
  311. From: NWOLF
  312. Subject: RE: Hard Disk Backup (Re: Msg 23183)
  313. Date: 2-NOV-00:37: Hardware & Peripherals
  314.  
  315. I'm a fan of DiskFit, although I was not aware of the problem that Jim
  316. mentioned about deleting files. It seems to do everything on your list.
  317. Another choice might be Fastback, from Fifth Dimension. IT is
  318. appropriately named, as it is very quick, it uses the disk drives and
  319. the hard disk all at the same time and achieves a good measure of
  320. efficiency in the process. 2 problems with it tho, 1) it does not create
  321. Finder-compatible files (that is you can't read a FB disk from the
  322. finder, and 2) because the disks appear to be empty to the finder (!) if
  323. you inadvertently try to save a file to that disk it will TRASH the
  324. directory file on the startup disk. If that was the hard disk, and if
  325. the file you overwrote on the floppy was your 1.2Meg system file, you
  326. have just created a DS error of rather large proportions! Moral - if you
  327. elect to use FB, put thedisks somewhere where you won't use them for
  328. ANYTHING else! Also, Fastback will not back up to volumes other than
  329. floppies, although 5th Generation says that will be fi xed in an
  330. upcoming re-release.
  331.  
  332. Neil.
  333.  
  334. ------------------------------
  335.  
  336. From: DDUNHAM
  337. Subject: RE: Hard Disk Backup (Re: Msg 23183)
  338. Date: 2-NOV-21:32: Hardware & Peripherals
  339.  
  340. HFS Backup meets most of your criteria.  You'll have to do a little
  341. manual work on the incrementals to keep stacks out (no easy way to tell
  342. if you accessed Help or your own stack, after all).
  343.  
  344. ------------------------------
  345.  
  346. From: CHUQ
  347. Subject: RE: FullWrite Professional grievance (Re: Msg 23170)
  348. Date: 1-NOV-21:35: User Supported Software
  349.  
  350. According to Ann Arbor, the rumors are all untrue. Thanks to Inforworld
  351. for being completely unprofressional (again). They ARE late, aprtly
  352. because the Ann Arbor folks seem to be hopelessly optimistic about how
  353. long a good beta test should take (they should hire me as a consultant
  354. -- I could design a whopper beta test if they keep marketing's hands off
  355. of it...). rumor has it that two certified beta sites have yet to see
  356. beta copies, by the way. A major stumbling block seems to be multifinder
  357. capability -- which evidently changed out from under a number of
  358. developers until the last second. Considering Apple's track record in
  359. compatibility from beta to FCS on the Ssytem and Finder, I'd probably
  360. hold a release utnil I got golden copies myself, especially when it is
  361. already amazingly late to market and another month won't hurt (he says
  362. -- it only hurts when I laugh........)
  363.  
  364. Of cource, having already taken over the Paint market (and losing it to
  365. Super Paint at the low end, Illustrator at the high end, and a few
  366. others in the middle), the WP market (well, if they had shipped in time,
  367. they WOULD have taken over the market. Now Word 3.0 is so entrenched
  368. it'll be a real battle, especially with Wordperfect hanging around here
  369. somewhere) the Ann arbor folks have decided to go after a market nobody
  370. has looked at yet -- Spreadsheets. They've announced Fullcalc, to go
  371. after the weak, inadequate Excel. And they're just in time to get
  372. flattened by the rumors Mac 1-2-3.
  373.  
  374. Ann Arbor turns out good product: a little too little (fullpaint was a
  375. great MacPaint replacement, at least until SuperPaint came out a month
  376. later...) and a little too late (as good as fullwrite looks, I have
  377. nothing but pity for those poor folks who didn't buy Word 3.0 waiting
  378. for their product). Great technical folks, but their marketing seems to
  379. need some serious help. Why, in gods name, don't they find a niche that
  380. someone else hasn't taken over and get their product out before the rest
  381. of the world?
  382.  
  383. chuq
  384.  
  385. ------------------------------
  386.  
  387. From: MACWEEKBOS
  388. Subject: RE: re: DiskTimer II claims
  389. Date: 1-NOV-19:44: Network Digests
  390.  
  391. >re: DiskTimer II claims
  392. >to: Ephraim Vishniac
  393.  
  394. I am still testing the Hammer 300, but it is the fastest drive I have
  395. ever tested in *real world tests*, specifically the duplication of a
  396. file in the Finder. The cache cannot account for the speed of
  397. duplication of this file (a 766K file), and testing on a Racet drive
  398. with a very large internal cache showed no remarkable speed in this test
  399. (although it gave a DiskTimer access speed of 0 and Read/Write times of
  400. 17, 34). I agree that internal caches in hard disks can grossly affect
  401. DiskTimer II times, and we need a better benchmark test nowadays. Some
  402. good ideas for improvements have been discussed on the net, though I've
  403. lost the name of the suggestor at the moment. Anyway, despite the
  404. inappropriateness of quoting DiskTimer speeds, I believe the Hammer is
  405. one of the fastest, if not the very fastest, disk available on the
  406. market.
  407.  
  408. Ric Ford
  409.  
  410. ------------------------------
  411.  
  412. From: MACWEEKBOS
  413. Subject: RE: re: DiskTimer II claims
  414. Date: 2-NOV-09:50: Network Digests
  415.  
  416. (ruffling through piles of paper...)
  417.  
  418. 5.5 sec.
  419.  
  420. The previous record was about 7 sec. for the DataFrame 40XP and some
  421. Peripheral Land drives.
  422.  
  423. DiskTimer results for the Hammer were 46, 47, 7.
  424.  
  425. These tests were on a standard Mac SE.  Norman says the Mac II shows a
  426. substantial speed increase over the SE.
  427.  
  428.  
  429. Ric
  430.  
  431. ------------------------------
  432.  
  433. From: INTECO
  434. Subject: TermProg features?
  435. Date: 1-NOV-23:01: Telecommunicating
  436.  
  437. I am developing a quite complicated terminal emulation program (very
  438. intelligent terminals). To give the program a more general background I
  439. would like to make it full featured terminal program. What kind of
  440. features do you like with the software you are u sing most and which not
  441. at all?
  442.  
  443. MacBinary II, XMODEM, YMODEM, Kermit Siemens 9750, VT220 are on the plan
  444. but what about color terminals? Which area standard?
  445.  
  446. I would apreaciate any ideas , suggestions and information
  447.  
  448. Uwe
  449.  
  450. ------------------------------
  451.  
  452. From: PDNNOG
  453. Subject: RE: TermProg features? (Re: Msg 23207)
  454. Date: 2-NOV-22:23: Telecommunicating
  455.  
  456. Please consider implementing ZMODEM which is Chuck Forsberg's protocol.
  457. In the PC world, it has taken everything by storm. It's a public domain
  458. protocol with throughput essentially equal to continuous sending with no
  459. timeouts for turnaround.
  460.  
  461. ------------------------------
  462.  
  463. From: MACWEEKBOS
  464. Subject: ?
  465. Date: 2-NOV-23:14: Bugs & Features
  466.  
  467. I don't know if this has been posted yet, because I haven't been able
  468. yet to catch up on the two weeks of messages while I was on vacation,
  469. but it's a lot of fun to hold down the command and option keys when you
  470. do "About MultiFinder"...
  471.  
  472. It's in color on a Mac II
  473.  
  474. Ric
  475.  
  476. ------------------------------
  477.  
  478. From: BWD
  479. Subject: C Compilers
  480. Date: 3-NOV-20:22: Programming
  481.  
  482. Does anyone know if Borland will be coming out with Turbo C for the
  483. Macintosh? We want to do some work with C at the office.  One of the
  484. technicians has a lot of experience with the PC side and wishes that he
  485. could use it on the Mac as well (I know!  There will be much more to it,
  486. but he is pro-Turbo!)
  487.  
  488. Any comments on other C compilers would be appreciated.
  489.  
  490. Thanks, Brian
  491.  
  492. ------------------------------
  493.  
  494. From: SYNTHONY
  495. Subject: TIFF - EPSF
  496. Date: 3-NOV-21:05: Mousing Around
  497.  
  498. I asked this question severl weeks ago, but no answer, so I hope you
  499. don't mind if I try again.  I wonder if there is any type of program
  500. that can convert the output from my Microtek scanner (TIFF) to a format
  501. that Cricket Draw can understand (EPSF?).  I do a lot of ad layouts and
  502. it would make life much easier!
  503.  
  504. Bill Synthony
  505.  
  506. ------------------------------
  507.  
  508. From: TSTEIN
  509. Subject: RE: TIFF - EPSF (Re: Msg 23253)
  510. Date: 4-NOV-17:28: Mousing Around
  511.  
  512. I don't know any simple way to do it (that is, I don't know of any
  513. program that only does what you want.) However, Image Studio can read
  514. TIFF formatted files and can save them as EPSF. It also can do a lot
  515. more, and that more may be more than you need.
  516.  
  517. ------------------------------
  518.  
  519. From: ASMCOR
  520. Subject: Novy Accelerator
  521. Date: 4-NOV-00:24: Hardware & Peripherals
  522.  
  523. Anybody bought one of the Novy accelerators? How good are they? Any
  524. compatibility problems? I'm gonna buy an accelerator soon, so any advice
  525. would be appreciated. It's for a Mac+.
  526.   Jan
  527.  
  528. ------------------------------
  529.  
  530. From: STEVEMALLER
  531. Subject: RE: Novy Accelerator (Re: Msg 23263)
  532. Date: 4-NOV-01:51: Hardware & Peripherals
  533.  
  534. Hey Jan!
  535.  
  536. I have a Radius Accelerator at home in my SE and I just love it (hiding
  537. his Apple hat). Fast as greased . . . er . . . well you know. Actually
  538. feels faster than my Mac II at work! Benchmarks point out that the '020
  539. boards (Levco, Radius, etc) ARE faster than the II in a lot of tests. I
  540. got my Radius sans '881 to save a few bucks. They have pretty attractive
  541. developer pricing, too. As far as the Novy is concerned, I haven't heard
  542. anything either way on it. Keep in mind that large-screen compatibility
  543. should be kept in mind. I'm pretty sure that the Radius card is only
  544. compatible with THEIR monitors (FPD and 2PD).
  545.  
  546. Good luck,
  547.  
  548.     Steve
  549.  
  550. ------------------------------
  551.  
  552. From: DWOOD
  553. Subject: RE: Novy Accelerator (Re: Msg 23263)
  554. Date: 4-NOV-23:50: Hardware & Peripherals
  555.  
  556. A person in our department got one of the Novy boards.  He bought the
  557. 68881 on his own to save some off of their price. He seemed to be very
  558. happy with it. It really improved the speed of his Mac+.  We tested it
  559. against my Mac II and it seems to be roughly 1/2 the speed of a Mac II. 
  560. Since the Radius acceleator and others for the SE are apporx. the speed
  561. of a II or a bit faster you should bkeep this in mind.  It may be better
  562. to buy sell your Mac Plus, get an SE and an accelerator.  But you will
  563. end up speeding more (1k or more?) then getting the Novy board.  The
  564. Novy board comes with 2 MB of RAM and so with the advent of Multifinder
  565. it is a nice addition if not just for the increased memory.  His total
  566. cost was about 1200, but he did not get the 16 MHz version (just the
  567. 12MHz one). I should say, however, that he was having some problems with
  568. the board. He would get some unexplained bombs and the feeling was that
  569. it was a bad connection on the clip with attached to the 68000.  He set
  570. it back yesterday and is getting the solder-on version (evidence of his
  571. happyness with the product.) Most everything that runs on a Mac II seems
  572. to run on it and the Novy people will give you a truthful list of the
  573. programs that do not work with it. It is Multifinder compatiable.
  574. Pesonally it seems to me like a good option for Mac+ upgrade, but I am
  575. not sure that getting a SE is not a better idea.  On a budget it is a
  576. good option. -Doug Wood
  577.  
  578. ------------------------------
  579.  
  580. From: INTECO
  581. Subject: A5 at interrupt time...?
  582. Date: 3-NOV-14:57: Programming Techniques
  583.  
  584. In the multifinder documentation it is stated that the CurrentA5 may be
  585. not your A5 (that of your program). I remember that I have already read
  586. some month ago about a save way to "transport" the A5 of your program to
  587. an routine that runs at interrupt time later. I think it was done with
  588. the ParmBlk...?
  589.  
  590. Does someone here has experience with this, or does he remember the
  591. source of this solution ?
  592.  
  593. Uwe
  594.  
  595. ------------------------------
  596.  
  597. From: PEABO
  598. Subject: RE: A5 at interrupt time...? (Re: Msg 2148)
  599. Date: 3-NOV-21:47: Programming Techniques
  600.  
  601. What you would do is imbed the param block inside a larger allocation of
  602. memory and take care to put additional parameters such as your A5 value
  603. at the end of any param block that uses your completion routine. I don't
  604. know anything about the state of low memory in this situation though, so
  605. I'd recommend not referencing any globals unless you are completely
  606. certain they are gloabl to the entire environment.
  607.  
  608. peter
  609.  
  610. ------------------------------
  611.  
  612. From: STEVEMALLER
  613. Subject: RE: A5 at interrupt time...? (Re: Msg 2148)
  614. Date: 4-NOV-01:57: Programming Techniques
  615.  
  616. Peter's reply was right on the money. You DO NOT know WHO'S world is
  617. current at interrupt time. In fact, you can really blow things out of
  618. the water if you get called in the middle of a Multifinder context
  619. switch! Imagine if HALF of low memory is valid...
  620.  
  621. You have to tack your application 's A5 into the param block, and be
  622. careful to restore the current value before your interrupt handler
  623. terminates...
  624.  
  625. Good luck. I'l try and locate a Tech Note or something if that will
  626. help.
  627.  
  628.      Steve Maller
  629.      Apple Computer
  630.  
  631. ------------------------------
  632.  
  633. From: INTECO
  634. Subject: RE: A5 at interrupt time...? (Re: Msg 2153)
  635. Date: 4-NOV-09:51: Programming Techniques
  636.  
  637. The register A0 should point to the parameter block. So I have to write
  638. a short assembler piece (or inline code) which fetches the value of the
  639. next variable after the ParamBlk instead of CurrentA5 (of course I set
  640. this variable before in the call). I hope that I do not need low memory
  641. globals except TickCount which should be safe.
  642.  
  643. Ok I will try it, thanks.
  644.  
  645. Uwe
  646.  
  647. ------------------------------
  648.  
  649. From: JIMH
  650. Subject: pr
  651. Date: 4-NOV-20:14: Programming Techniques
  652.  
  653. Does anyone know if it is possible to use MPW C to generate code for a
  654. generic 68020 system?  Problems i see is that standard IO will not be
  655. talking to the correct devices, so can i write a getchar, putchar set of
  656. routines and make it work with our VME pro cessor?  thanks jim
  657.  
  658. ------------------------------
  659.  
  660. From: MACENGLISH
  661. Subject: Imagewriter II
  662. Date: 5-NOV-22:52: Hardware & Peripherals
  663.  
  664. I have a question about the quality of the Imagewriter II vs. the
  665. Imagewriter I.  A friend of mine recently bought a Mac Plus and an
  666. Imagewriter II.  I had heard that the print quality was much better.  So
  667. I asked her to print me out some samples.  However, when she prints out
  668. MacWrite samples on High Quality ( Best), they don't look any better
  669. than mine (ImagewriterI).  When she switches to draft on MacWrite and
  670. then puts the Imagewriter II on Near Letter Quality, then I can see a
  671. difference, but in draft all the spacing is off and none of the special
  672. feature (e.g. italics) show up.  Is there a way she can get near letter
  673. quality printing with all the features using MacWrite?  Supposedly using
  674. High Quality in MacWrite overrides whatever the printer is set at.
  675.  
  676. Debbie
  677.  
  678. ------------------------------
  679.  
  680. From: NWOLF
  681. Subject: RE: Imagewriter II (Re: Msg 23304)
  682. Date: 6-NOV-00:26: Hardware & Peripherals
  683.  
  684. you are certainly brave to open up that can of worms! Doubtless there
  685. are others who being more sagacious, salacious and articulatious than i
  686. will reply in far greater detail and accuracy. However, I will (perhaps
  687. albeit somewhat foolishly) start the ball rolling. Remember, what
  688. follows is strictly reliable hearsay, straight from the true vine rumor
  689. and verifiably factual gossip, all of which is honest, straightforward,
  690. unmitigated opinion of the first order.
  691.  
  692. The ImageWriter one has little to recommend it other than it is solidly
  693. built and should last several lifetimes if not mistreated. It is simple,
  694. stout and reliable. The IW II is no less a workhorse but is subject to a
  695. few anomalous glitches which seem to defy reason as well as any attempts
  696. to explain or rectify them. It's strongest point by comparison to the IW
  697. 1 is its paperhandling capability. At this it excels. Try printing an
  698. envelope on its predecessor and you'll see what I mean. It is also
  699. faster than the IW 1, in all printing modes. It also has better Near
  700. Letter Quality printing in draft mode, which is _perhaps_ acceptable for
  701. business use under some circumstances. In order to have draft printing
  702. work properly on either printer in terms of spacing especially, it is
  703. helpful to choose a monospaced font (Monaco or Courier for instance) in
  704. 10 point size. This will pretty much eliminate the weird spacing which
  705. will otherwise occur. I don't have much experience with this when
  706. printing in draft in either of the enhanced modes, but perhaps someone
  707. else will enlightun us on this.
  708.  
  709. When going for the best quality it sometimes helps to check Tall
  710. Adjusted in the page setup menu. The degree to which this is helpful
  711. depends upon the font: it works better with some and not at all with
  712. others. Experiment. Of course, to get the best quality it is necessary
  713. to have a font that is twice the size of the one you are printing. But
  714. it is also necessary that it be designed to be compatible in this way.
  715. Some fonts which may seem to be double the size are not really designed
  716. for printing - they are either designed for the screen, or they were not
  717. made to the proper proportions for printing. The font sent to the
  718. printer is not necessarily what you see on the screen in most cases and
  719. that's why what you see is NOT what you get most of the time. If you
  720. stick to more reliable fonts you are more likely to be successful in
  721. this regard. However, I know certain people who claim that most fonts
  722. are such a mess that they have designed fonts which are just for
  723. printing - they don't look too much like what they print like on the
  724. screen but they print beautifully. If you can find it, Juneau 10 (a
  725. serifed Geneva replacement) is such a font; combined with its double it
  726. makes a very clean and easily readable typeface which prints quickly.
  727. This is one of the fonts which appears to print beetter when set to Tall
  728. Adjusted, by the way.
  729.  
  730. Everyone is familiar with the scrunching line problem inherent in the
  731. IW2. No doubt there are several threads pertaining to this pernicious
  732. problem in the acrchives which Peabo could dig out for your review. I
  733. have seen many many explanations for this anomaly. Some say its a
  734. hardware problem - something to do with the gears and taking up the slop
  735. therein. Some say it's a software problem. (Apple's line, I believe.)
  736. However, several generations of printer drivers from Apple have not
  737. solved it. It is said that it comes from the printer's nasty habit of
  738. rolling the paper back and forth a time or two before it prints. My
  739. experience is that it happens consistently when there is no paper
  740. hanging out of the printer and less often when there is, though this
  741. does not eliminate it. Since the problem usually occurs on only the
  742. first or second line of a document if you insert spaces in these lines
  743. and begin printing just slightly further down the page, the problem is
  744. (usually) eliminated. Some programs do it more than others, also.
  745. MacWrite is the WORST offender. However it also happens with a wide
  746. variety of programs, although sporadically with some and intermittently
  747. with others. It's not reason enough to boycott the printer but it sure
  748. is annoying. Other fixes for this problem have to do with resetting all
  749. the dip switches which control paper movement and finding the
  750. combination which works best for you. Although this method is claimed to
  751. be a sure cure, it's such a headache that most are unwilling to attempt
  752. it. (I am one of those.) It requires setting a switch, printing the
  753. document, setting another switch, printing the document, resetting a
  754. switch, printing the document, etc., etc., etc. Eventually one will meet
  755. with success. But at what price?
  756.  
  757. And now we have to contend with the LQ which requires a font 3 times the
  758. size of the one you wish to print and also requires everyone to fix
  759. their software to run with it. At this time, very few programs know how
  760. to work with it and of those that do, several are vaporware! Look
  761. forward to more fun and games in the dot matrix printer department from
  762. Apple next year.
  763.  
  764. OK youse guys. Why doncha jump in and set this lady straight...
  765.  
  766. Neil.
  767.  
  768. ------------------------------
  769.  
  770. From: JIMH
  771. Subject: RE: FullWrite Professional grievance (Re: Msg 23292)
  772. Date: 6-NOV-00:29: User Supported Software
  773.  
  774. speaking of word processor bugs has anyone else had problems with
  775. microsoft word 3.01 addressing memory beyond one meg?  We have a large
  776. doc in word that wont print evan on a eight meg mac II with or without
  777. multifinder.  Even when i assign work 6 megs of space under multifinder
  778. the about finder dialog shows word runing out of memory when its only
  779. using 1 meg of it.  I been MicroSofted i am afraid!  best jim
  780.  
  781. ------------------------------
  782.  
  783. End of Delphi Mac Digest
  784. ************************
  785.